home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Source Code
/
Visual Basic Source Code.iso
/
vbsource
/
learnapi
/
about.frm
(
.txt
)
next >
Wrap
Visual Basic Form
|
1998-07-02
|
8KB
|
234 lines
VERSION 5.00
Begin VB.Form frmAbout
BorderStyle = 3 'Fixed Dialog
Caption = "About LearnAPI"
ClientHeight = 3885
ClientLeft = 2340
ClientTop = 1935
ClientWidth = 5760
ClipControls = 0 'False
Icon = "About.frx":0000
LinkTopic = "Form2"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 2681.496
ScaleMode = 0 'User
ScaleWidth = 5408.938
ShowInTaskbar = 0 'False
Begin VB.PictureBox picLogo
BackColor = &H000000FF&
BorderStyle = 0 'None
Height = 615
Left = 240
Picture = "About.frx":014A
ScaleHeight = 615
ScaleWidth = 495
TabIndex = 3
TabStop = 0 'False
Top = 240
Width = 495
End
Begin VB.PictureBox picBackground
BackColor = &H000000FF&
Height = 2055
Left = 120
ScaleHeight = 1995
ScaleWidth = 675
TabIndex = 2
TabStop = 0 'False
Top = 120
Width = 735
End
Begin VB.CommandButton cmdOK
Cancel = -1 'True
Caption = "OK"
Default = -1 'True
Height = 345
Left = 4680
TabIndex = 0
Top = 3480
Width = 1020
End
Begin VB.Label lblURL
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "web-site"
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 400
Underline = -1 'True
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FF0000&
Height = 195
Index = 2
Left = 3960
MouseIcon = "About.frx":0454
MousePointer = 99 'Custom
TabIndex = 13
ToolTipText = "http://www.microweird.demon.co.uk"
Top = 3360
Width = 585
End
Begin VB.Label lblMailto
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "steve@microweird.demon.co.uk"
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 400
Underline = -1 'True
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FF0000&
Height = 195
Index = 2
Left = 1560
MouseIcon = "About.frx":05A6
MousePointer = 99 'Custom
TabIndex = 12
Top = 3360
Width = 2280
End
Begin VB.Label lblName
Caption = "Danny Falkov"
Height = 255
Index = 3
Left = 120
TabIndex = 11
Top = 3600
Width = 1335
End
Begin VB.Label lblName
Caption = "Steve Anderson"
Height = 255
Index = 2
Left = 120
TabIndex = 10
Top = 3360
Width = 1335
End
Begin VB.Label lblName
Caption = "Charles Bronner"
Height = 255
Index = 1
Left = 120
TabIndex = 9
Top = 3120
Width = 1335
End
Begin VB.Label lblCredits
Caption = $"About.frx":06F8
Height = 615
Left = 120
TabIndex = 8
Top = 2400
Width = 5535
End
Begin VB.Label lblAbout
Caption = $"About.frx":07EE
Height = 1215
Left = 960
TabIndex = 7
Top = 1080
Width = 4575
End
Begin VB.Label lblOS
AutoSize = -1 'True
Caption = "for Windows 95/98 and Windows NT 4."
Height = 195
Left = 960
TabIndex = 6
Top = 720
Width = 2835
End
Begin VB.Label lblVersion
AutoSize = -1 'True
Caption = "Version 1.0"
Height = 195
Left = 960
TabIndex = 5
Top = 480
Width = 795
WordWrap = -1 'True
End
Begin VB.Label lblBuild
Caption = "(Build 1234)"
Height = 255
Left = 1800
TabIndex = 4
Top = 480
Width = 1215
End
Begin VB.Label lblTitle
AutoSize = -1 'True
Caption = "LearnAPI"
BeginProperty Font
Name = "MS Sans Serif"
Size = 13.5
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00000000&
Height = 360
Left = 960
TabIndex = 1
Top = 120
Width = 1365
WordWrap = -1 'True
End
Begin VB.Line Line1
BorderColor = &H00808080&
BorderStyle = 6 'Inside Solid
Index = 1
X1 = 84.515
X2 = 5300.947
Y1 = 1604.756
Y2 = 1604.756
End
Begin VB.Line Line1
BorderColor = &H00FFFFFF&
BorderWidth = 2
Index = 0
X1 = 98.6
X2 = 5300.947
Y1 = 1615.109
Y2 = 1615.109
End
Attribute VB_Name = "frmAbout"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
'There is no API code in the frmAbout module. All the
'code is for the About form only.
Private Sub cmdOK_Click()
Unload Me
End Sub
Private Sub Form_Load()
lblVersion.Caption = "Version " & App.Major & "." & App.Minor
lblBuild.Caption = "(Build " & App.Revision & ")"
End Sub
Private Sub lblMailto_Click(Index As Integer)
Dim Success&
Select Case Index
Case 2: Success = ShellExecute(Me.hwnd, vbNullString, "mailto:steve@microweird.demon.co.uk", vbNullString, "C:\", SW_SHOWNORMAL)
End Select
End Sub
Private Sub lblURL_Click(Index As Integer)
Dim Success&
Select Case Index
Case 2: Success = ShellExecute(Me.hwnd, vbNullString, "http://www.microweird.demon.co.uk", vbNullString, "C:\", SW_SHOWNORMAL)
End Select
End Sub